DoubleIterator

abstract class DoubleIterator : Iterator<Double>

An iterator over a sequence of values of type Double.

Constructors

DoubleIterator
Link copied to clipboard
fun DoubleIterator()

Functions

hasNext
Link copied to clipboard
abstract operator fun hasNext(): Boolean

Returns true if the iteration has more elements.

next
Link copied to clipboard
operator override fun next(): Double

Returns the next element in the iteration.

nextDouble
Link copied to clipboard
abstract fun nextDouble(): Double

Returns the next value in the sequence without boxing.